Oxford R User Group
27 November 2023
Lecturer in Health Data Science at Lancaster University.
Academic background in statistics, and experience in data science consultancy.
Blog about R and data science at nrennie.rbind.io/blog.
snow Quarto extensionHead and body
Buttons and eyes
Hat
Arms
Nose
Sky
Snowflakes
Snow
Head and body (circles with geom_circle())
Buttons and eyes (points with geom_point())
Hat (rectangles with geom_rect())
Arms (lines with geom_segment())
Nose (polygon with geom_sf())
Sky (styling with theme())
Snowflakes (points with geom_point())
Snow (rectangle with geom_rect())
{blastula}: a package for creating and sending HTML emails from R.
{gmailR}: a package for sending emails via the Gmail’s RESTful API.
{RDCOMClient}: a Windows-specific package for sending emails in R from the Outlook app.
… and several other email R packages!
library(ggirl)
contact_email <- "fakeemailforreal@gmail.com"
send_address_1 <- address(
name = "Fake Personname",
address_line_1 = "250 North Ave",
city = "Boston", state = "MA",
postal_code = "22222", country = "US"
)
message_1 <- "This plot made me think of you!"
ggpostcard(
plot,
contact_email,
messages = message_1,
send_addresses = send_address_1
)